home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PsL Monthly 1993 December
/
PSL Monthly Shareware CD-ROM (December 1993).iso
/
prgmming
/
dos
/
c
/
tegl_c.exe
/
lha
/
SAMPROGS.ZIP
/
SAMC0201.C
< prev
next >
Wrap
Text File
|
1990-05-13
|
438b
|
23 lines
/* samc0201.c */
/* the minimum requirements for a program */
/* using TEGL Windows Toolkit II */
#include <graphics.h>
#include "teglsys.h"
void main()
{
easytegl();
/* insert your code here */
pushimage(100,100,200,120);
shadowbox(100,100,200,120);
setcolor(BLACK);
outtegltextxy(105,105,"Hello world");
/* then turn control over to supervisor */
teglsupervisor();
}